home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / sal100 / bubble.src < prev    next >
Text File  |  1993-05-27  |  176b  |  11 lines

  1. void bubble()
  2. {
  3.   int a;
  4.   int b;
  5.  
  6.   for(a=1; a < ARRAYSIZE; a++)
  7.     for(b=ARRAYSIZE-1, b >= a; b--)
  8.       if(Vektor[b-1] > Vektor[b])
  9.         SwapNumbers(b-1,b);
  10. }
  11.